home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / NETPROG.ZIP;1 / NETPROG.TAR / net / unix.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-17  |  288 b   |  15 lines

  1. /*
  2.  * Definitions for UNIX domain stream and datagram client/server programs.
  3.  */
  4.  
  5. #include    <stdio.h>
  6. #include    <sys/types.h>
  7. #include    <sys/socket.h>
  8. #include    <sys/un.h>
  9.  
  10. #define    UNIXSTR_PATH    "./s.unixstr"
  11. #define    UNIXDG_PATH    "./s.unixdg"
  12. #define    UNIXDG_TMP    "/tmp/dg.XXXXXX"
  13.  
  14. char    *pname;
  15.